/* Body style */
body{
	background-color: #FFFFFF;
	color: black;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

 {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the home button top bar */
.home-button {
  overflow: hidden;
  background-color: #f4a261;
}

/* Style the home button */
.home-button a {
  float: left;
  display: block;
  background-color: #e76f51;
  color: #f2f2f2;
  font-size:125%;
  text-align: center;
  text-decoration: none;
  border: none;
  padding: 0.75ch;
  display: inline-block;
  margin: 0.5ch 0.75ch;
  cursor: pointer;
  border-radius: 3ch;
}

/* Change color on hover */
.home-button a:hover {
  background-color: #F24324;
  color: f2f2f2;
}

/* Style the content */
.content {
  background-color: #ddd;
  padding: 1.5ch;
}
/*Style of the  fields form*/
.form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form h1 {
  color: white;
  font-size: 125%;
  font-family: sans-serif;
  white-space: nowrap;
  margin: 0px;
}

.fields-form {
  display: flex;
  justify-content: center;
  align-items: center;   
  color:#f2f2f2;
  font-family: sans-serif;
}

.fields-form input,
.fields-form select,
.fields-form textarea {
  border: none;
  font-family: sans-serif;
}

.fields-form input:focus,
.fields-form textarea:focus {
  box-shadow: 3px 3px 10px rgb(228, 228, 228), -3px -3px 10px rgb(224, 224, 224);
}

.fields-form .submit {
  width: 100%;
  padding: 8px 0;
  font-size: 20px;
  color: rgb(44, 44, 44);
  background-color: #ffffff;
  border-radius: 5px;
}

.fields-form .submit:hover {
  box-shadow: 3px 3px 6px rgb(255, 214, 176);
}
/* Style the table */
table {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5ch;
  display: flex;
  color:#f2f2f2;
  font-family: sans-serif;
  background-color: #2a9d8f;
}

.table h1 {
  color: white;
  font-size: 125%;
  font-family: sans-serif;
  white-space: nowrap;
}

.table tr:hover {
	background-color: #D6EEEE;
}

.field-table.table tr:nth-child(2) {
    font-weight: bold;
} 

/* Style the footer */
.footer {
  color:black;
  background-color: #015958;
  padding: 1.5ch;
}